From 7dfa4a382a7d34e77942a1d3bfb105af4dd6248c Mon Sep 17 00:00:00 2001 From: "emellor@ewan" Date: Thu, 22 Sep 2005 11:09:11 +0100 Subject: [PATCH] this patch fixes the bug that when "cpu" is not set in config file, control panel complains "Error creating domain - int argument required". Signed-off-by: Xin Li --- tools/python/xen/xend/image.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 7702a7602c..0ef3457326 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -155,6 +155,8 @@ class ImageHandler: if dom <= 0: raise VmError('Creating domain failed: name=%s' % self.vm.getName()) + if cpu is None: + cpu = -1; log.debug("initDomain: cpu=%d mem_kb=%d ssidref=%d dom=%d", cpu, mem_kb, ssidref, dom) xc.domain_setcpuweight(dom, cpu_weight) xc.domain_setmaxmem(dom, mem_kb) -- 2.30.2